home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
program
/
funnel.zoo
/
sources
/
machin.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-04-11
|
12KB
|
346 lines
/*##############################################################################
FUNNNELWEB COPYRIGHT
====================
FunnelWeb is a literate-programming macro preprocessor.
Copyright (C) 1992 Ross N. Williams.
Ross N. Williams
ross@spam.adelaide.edu.au
16 Lerwick Avenue, Hazelwood Park 5066, Australia.
This program is free software; you can redistribute it and/or modify
it under the terms of Version 2 of the GNU General Public License as
published by the Free Software Foundation.
This program is distributed WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See Version 2 of the GNU General Public License for more details.
You should have received a copy of Version 2 of the GNU General Public
License along with this program. If not, you can FTP the license from
prep.ai.mit.edu/pub/gnu/COPYING-2 or write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Section 2a of the license requires that all changes to this file be
recorded prominently in this file. Please record all changes here.
Programmers:
RNW Ross N. Williams ross@spam.adelaide.edu.au
Changes:
07-May-1992 RNW Program prepared for release under GNU GPL V2.
##############################################################################*/
/******************************************************************************/
/* MACHIN.C */
/******************************************************************************/
/* */
/* WARNING: DO NOT ADD ANY PROGRAM DEPENDENT DEFINITIONS. */
/* */
/* This file contains machine-dependent, program-independent stuff that */
/* implements the functionality promised in MACHIN.H. */
/* */
/* Note: As usual, the full definitions of functions in the .H file are not */
/* repeated here. */
/* */
/******************************************************************************/
#include <time.h>
#include "style.h"
#include "as.h"
#include "machin.h"
/* The Macintosh's doesn't have a command language, and so we have to prompt */
/* for a command line. This requires a special package. */
#if MAC
#include <console.h>
#endif
/* Under VMS, we need RMS to get at stuff to do with filenames. */
#if VMS
#include RMS
#endif
/******************************************************************************/
/* LOCAL FUNCTIONS */
/******************************************************************************/
LOCAL void mconcat P_((int,char **,char *));
LOCAL void mconcat(argc,argv,result)
/* Given argc and argv, as passed to main(), this function appends all the */
/* arguments together (separated by spaces) into the string "result". */
/* This function assists in reconstructing the command line. */
/* This function is actually portable, so you shouldn't have to change it. */
/* Note: "mconcat" stands for Multiple CONCATenation. */
int argc;
char **argv;
char *result;
{
uword i;
strcpy(&result[0],argv[0]);
for (i=1;i<argc;i++)
{
strcat(&result[0]," " );
strcat(&result[0],argv[i]);
}
}
/******************************************************************************/
#if MAC | SUN | PC
LOCAL void fn_split P_((p_fn_t,p_fn_t,p_fn_t,p_fn_t));
LOCAL void fn_split(p_fn,p_path,p_name,p_ext)
/* Accepts a filename in p_fn and writes the path, name, and extension */
/* components of the filename to the strings p_path, p_name, and p_ext. */
p_fn_t p_fn;
p_fn_t p_path;
p_fn_t p_name;
p_fn_t p_ext;
{
char *p,*q;
/* Make sure that the input filename is a sensible length. */
as_cold(strlen(p_fn)<=FILENAME_MAX,"fn_split: Filename is too long.");
/* Extract the path from the input string by searching for the last */
/* occurrance of the special character used for directories. */
/* Find the last directory/filename separator. */
p=strrchr(p_fn,FN_DELIM);
if (p==NULL)
{strcpy(p_path,""); p=p_fn;}
else
{
memcpy(p_path,p_fn,(size_t) (p-p_fn+1));
p_path[(size_t) (p-p_fn+1)]=EOS;
p++;
}
/* Assert: p now points to the first character of the name field. */
/* Now locate the file extension. */
q=strrchr(p_fn,'.');
if (q==NULL)
{strcpy(p_ext,""); q = &p_fn[strlen(p_fn)];}
else
{strcpy(p_ext,q);}
/* Assert: q now points to the '.' preceding the extension field. */
/* Now anything between p and q must be the filename proper. */
for (;p<q;p++)
*p_name++ = *p;
*p_name=EOS;
}
#endif
/******************************************************************************/
#if MAC | SUN | PC
LOCAL void fn_join P_((p_fn_t,p_fn_t,p_fn_t,p_fn_t));
LOCAL void fn_join(p_fn,p_path,p_name,p_ext)
/* This function sets p_fn to the empty string and then successively appends */
/* p_path, p_name, and p_ext. Before doing this, it checks to make sure that */
/* there will be enough room and bombs the program if there isn't. */
p_fn_t p_fn;
p_fn_t p_path;
p_fn_t p_name;
p_fn_t p_ext;
{
as_cold(strlen(p_path)+strlen(p_name)+strlen(p_ext) <= FILENAME_MAX,
"fn_join: Constructed filename is too long.");
strcpy(p_fn,p_path);
strcat(p_fn,p_name);
strcat(p_fn,p_ext);
}
#endif
/******************************************************************************/
/* EXPORTED FUNCTIONS */
/******************************************************************************/
#if MAC | SUN | PC
EXPORT void fn_ins(p_cur,p_add)
p_fn_t p_cur;
p_fn_t p_add;
{
fn_t cur_path, add_path;
fn_t cur_name, add_name;
fn_t cur_extn, add_extn;
/* Split the argument file names into their component parts. */
fn_split(p_cur,cur_path,cur_name,cur_extn);
fn_split(p_add,add_path,add_name,add_extn);
/* Perform the inheriting on a field by field basis. */
if (strlen(add_path) > 0) strcpy(cur_path,add_path);
if (strlen(add_name) > 0) strcpy(cur_name,add_name);
if (strlen(add_extn) > 0) strcpy(cur_extn,add_extn);
/* Put the fields back together again to yield the final result. */
fn_join(p_cur,cur_path,cur_name,cur_extn);
}
#endif
#if VMS
EXPORT void fn_ins(p_cur,p_add)
/* This VMS version of fn_ins was written with the assistance of: */
/* Jeremy Begg (jeremy@vsm.com.au) of VSM Software Services. Thanks! */
/* The VMS version is messy because VMS has highly structured filenames and */
/* highly ingrained rituals for manipulating them. */
p_fn_t p_cur;
p_fn_t p_add;
{
struct FAB cur_fab; /* FAB for SYS$PARSE */
struct NAM cur_nam; /* NAM for SYS$PARSE */
fn_t expanded; /* Result of SYS$PARSE */
long rms_status; /* Status of SYS$PARSE */
/*
printf("\nTRACE: Call of fn_ins(...).\n");
printf(" Current spec = \"%s\".\n",p_cur);
printf(" Add spec = \"%s\".\n",p_add);
*/
/* Initialize the FAB and NAM block to something sensible. */
cur_fab = cc$rms_fab;
cur_nam = cc$rms_nam;
/* (fna,fns) is address and size of input file spec in FAB block. */
cur_fab.fab$l_fna = p_add;
cur_fab.fab$b_fns = strlen(p_add);
/* (dna,dns) is address and size of default file spec in FAB block. */
cur_fab.fab$l_dna = p_cur;
cur_fab.fab$b_dns = strlen(p_cur);
/* Connect the NAM block to the FAB block. */
cur_fab.fab$l_nam = &cur_nam;
/* Point the NAM block's target name fields to the target namechar array. */
cur_nam.nam$l_esa = &expa